home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / aclocal-1.5 / protos.m4 < prev    next >
Encoding:
M4 Source File  |  2005-10-16  |  626 b   |  26 lines

  1. ## ------------------------------- ##
  2. ## Check for function prototypes.  ##
  3. ## From Franc,ois Pinard           ##
  4. ## ------------------------------- ##
  5.  
  6. # serial 1
  7.  
  8. AC_DEFUN([AM_C_PROTOTYPES],
  9. [AC_REQUIRE([AM_PROG_CC_STDC])
  10. AC_REQUIRE([AC_PROG_CPP])
  11. AC_MSG_CHECKING([for function prototypes])
  12. if test "$am_cv_prog_cc_stdc" != no; then
  13.   AC_MSG_RESULT(yes)
  14.   AC_DEFINE(PROTOTYPES,1,[Define if compiler has function prototypes])
  15.   U= ANSI2KNR=
  16. else
  17.   AC_MSG_RESULT(no)
  18.   U=_ ANSI2KNR=./ansi2knr
  19. fi
  20. # Ensure some checks needed by ansi2knr itself.
  21. AC_HEADER_STDC
  22. AC_CHECK_HEADERS(string.h)
  23. AC_SUBST(U)dnl
  24. AC_SUBST(ANSI2KNR)dnl
  25. ])
  26.